body {
  background-color: #150578;
  color: #ffffff;
  margin: 0;
}
.navbar {
  background-color: #150578 !important;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.nav-icon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}
.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.navbar-nav .active {
  color: #ffffff !important;
}
.hobby-container {
  background-color: rgba(120, 192, 224, 0.6);
  margin: 120px auto 30px;
  padding: 30px 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 1100px;
  text-align: center;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.carousel {
  width: 90%;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.carousel img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 10px;
}
.hobby-info {
  width: 75%;
  background-color: rgba(120, 192, 224, 0.6);
  margin: 50px auto;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  text-align: center;
}
.hobby-info h2 {
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  font-size: 1.1rem;
}
.hobby-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px auto;
}
.hobby-card {
  position: relative;
  width: 400px;
  height: 260px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.hobby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hobby-card:hover {
  transform: scale(1.05);
}
.hobby-card:hover img {
  transform: scale(1.1);
}
.hobby-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  padding: 15px 0;
  border-radius: 0 0 15px 15px;
  transition: background 0.3s;
}
.hobby-card:hover .overlay {
  background: rgba(0, 0, 0, 0.8);
}
.extra-info {
  margin-top: 50px;
  background-color: rgba(120, 192, 224, 0.3);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
footer {
  background-color: rgba(0, 26, 102, 0.9);
  text-align: center;
  padding: 15px 0;
  color: #ffffff;
  margin-top: 30px;
}
footer a {
  color: #99ccff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .carousel img {
    height: 400px;
  }
  .hobby-info {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .carousel img {
    height: 300px;
  }
  .hobby-card {
    width: 90%;
  }
  .page-title {
    font-size: 1.8rem;
  }
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}